home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / SUCursor.idl < prev    next >
Encoding:
Text File  |  1997-01-01  |  1.4 KB  |  60 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993-1994 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _SUCURSOR_
  4. #define _SUCURSOR_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13. interface  ODStorageUnitCursor;
  14.  
  15. //==============================================================================
  16. // Classes used by this interface
  17. //==============================================================================
  18. interface    ODStorageUnit;
  19.  
  20. //==============================================================================
  21. // ODStorageUnitCursor
  22. //==============================================================================
  23.  
  24. interface ODStorageUnitCursor : ODObject
  25. {
  26.  
  27.     void GetProperty(out ODPropertyName propertyName);
  28.     
  29.     void GetValueType(out ODValueType valueType);
  30.                     
  31.     void GetValueIndex(out ODValueIndex valueIndex);
  32.  
  33.      void SetProperty(in ODPropertyName propertyName);
  34.     
  35.     void SetValueType(in ODValueType valueType);
  36.     
  37.     void SetValueIndex(in ODValueIndex valueIndex);
  38.     
  39. #ifdef __SOMIDL__
  40.     implementation
  41.     {
  42.     majorversion = 1; minorversion = 0;
  43.       functionprefix = ODStorageUnitCursor;
  44.     override:
  45.         somUninit;
  46.     releaseorder:
  47.         reserved1,
  48.         GetProperty,
  49.         GetValueType,
  50.         GetValueIndex,
  51.         SetProperty,
  52.         SetValueType,
  53.         SetValueIndex;
  54.     };
  55.  
  56. #endif
  57. };
  58.  
  59. #endif  // _SUCURSOR_
  60.